2007-04-25 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintoperation.c (preview_iface_end_preview): Don't
crash if end_run is not set. (#424168, Matthias Hasselmann)
svn path=/trunk/; revision=17636
+2007-04-25 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkprintoperation.c (preview_iface_end_preview): Don't
+ crash if end_run is not set. (#424168, Matthias Hasselmann)
+
2007-04-25 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenu.c (gtk_menu_handle_scrolling): fix ACTIVE state of
if (op->priv->rloop)
g_main_loop_quit (op->priv->rloop);
-
- op->priv->end_run (op, op->priv->is_sync, TRUE);
+
+ if (op->priv->end_run)
+ op->priv->end_run (op, op->priv->is_sync, TRUE);
g_signal_emit (op, signals[DONE], 0,
GTK_PRINT_OPERATION_RESULT_APPLY);